1 // Written in the D programming language. 2 3 /** 4 * 5 * Tom's Obvious, Minimal Language (v0.4.0). 6 * 7 * License: $(HTTP https://github.com/Kripth/toml/blob/master/LICENSE, MIT) 8 * Authors: Kripth 9 * References: $(LINK https://github.com/toml-lang/toml/blob/master/README.md) 10 * Source: $(HTTP https://github.com/Kripth/toml/blob/master/src/toml/package.d, toml/_package.d) 11 * 12 */ 13 module toml; 14 15 public import std.datetime : SysTime, Date; 16 17 public import toml.datetime : DateTime, TimeOfDay; 18 public import toml.toml : TOML_TYPE, TOMLDocument, TOMLValue, parseTOML, 19 TOMLException, TOMLParserException;